home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 …ember: Reference Library / Apple Developer Reference Library (December 1999) (Disk 1).iso / pc / technical documentation / develop / develop issue 26 / develop issue 26 code / truffles - display mgr. / sprocket / interfaces / splashwindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-05  |  595 b   |  35 lines

  1. /*
  2.     File:        SplashWindow.h
  3.  
  4.     Contains:    The splash screen window
  5.                 
  6.     Written by: Dave Falkenburg
  7.     
  8.     Copyright:    © 1993-94 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.          <2>     11/8/94    DRF        Keep a copy of the PicHandle so we can better handle a missing
  13.                                     splash picture.
  14.  */
  15.  
  16. #ifndef        _SPLASHWINDOW_
  17. #define        _SPLASHWINDOW_
  18.  
  19. #ifndef        _WINDOW_
  20. #include    "Window.h"
  21. #endif
  22.  
  23. class    TSplashWindow    :    public TWindow
  24.     {
  25. public:
  26.                         TSplashWindow();
  27.  
  28.     virtual WindowRef    MakeNewWindow(WindowRef behindWindow);
  29.  
  30. protected:
  31.     PicHandle            fSplashPicture;
  32.     };
  33.  
  34. #endif
  35.